home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevpcl.h < prev    next >
Text File  |  1994-09-18  |  2KB  |  43 lines

  1. /* Copyright (C) 1992, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpcl.h */
  20. /* Interface to PCL utilities for printer drivers */
  21. /* Requires gdevprn.h */
  22.  
  23. /* Define the PCL paper size codes. */
  24. #define PAPER_SIZE_LETTER 2
  25. #define PAPER_SIZE_LEGAL 3
  26. #define PAPER_SIZE_A4 26
  27. #define PAPER_SIZE_A3 27
  28. #define PAPER_SIZE_A2 28
  29. #define PAPER_SIZE_A1 29
  30. #define PAPER_SIZE_A0 30
  31.  
  32. /* Get the paper size code, based on width and height. */
  33. int    gdev_pcl_paper_size(P1(gx_device *));
  34.  
  35. /* Color mapping procedures for 3-bit-per-pixel RGB printers */
  36. dev_proc_map_rgb_color(gdev_pcl_3bit_map_rgb_color);
  37. dev_proc_map_color_rgb(gdev_pcl_3bit_map_color_rgb);
  38.  
  39. /* Row compression routines */
  40. typedef ulong word;
  41. int    gdev_pcl_mode2compress(P3(const word *row, const word *end_row, byte *compressed)),
  42.     gdev_pcl_mode3compress(P4(int bytecount, const byte *current, byte *previous, byte *compressed));
  43.